home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
progjour
/
1988
/
04
/
smltpl.h
< prev
next >
Wrap
Text File
|
1988-04-28
|
625b
|
24 lines
/*
* Header file for the small memory model template
*
* Written by Michael Babcock and Bill Hall
* April 20, 1988
*
*/
/* This trick insures that globals are declared in only one place */
#if !defined(EXTERN)
#define EXTERN extern
#endif
/* Declarations which need to be known in all C source files */
LONG FAR PASCAL MainWndProc(HWND,unsigned,WORD,LONG);
BOOL FAR InitProgram(HANDLE, HANDLE, LPSTR, int);
/* Resource string constants */
#define IDS_APPNAME 100
/* Global variables */
EXTERN HWND hWndMain; /* main window handle */
EXTERN char szAppName[10]; /* name of the application */